home *** CD-ROM | disk | FTP | other *** search
/ User's Choice Windows CD / User's Choice Windows CD (CMS Software)(1993).iso / utility2 / wnders22.zip / WINDERS.BAT < prev    next >
DOS Batch File  |  1992-08-18  |  796b  |  28 lines

  1. @ECHO OFF
  2. REM *****************************************
  3. REM *     SAMPLE BATCH FILE FOR WINDERS     *
  4. REM *             VERSION 2.2               *
  5. REM * Copyright (c)1992 By Earl W. Hartsell *
  6. REM *      This is a Freeware program.      *
  7. REM *****************************************
  8. REM
  9. REM Place WINDERS.BAT in WINDOWS directory and use
  10. REM Winders with the /N option.
  11. REM Example:
  12. REM          WINDERS /N WINDERS.BAT  will execute this file in C:\WINDOWS\
  13. REM          and WINDERS.BAT will in turn execute WINDOWS after the screen
  14. REM          saver has been turned off.
  15. REM
  16. REM
  17. REM Disable DOS Screen Save Here.
  18. SCRNSAV OFF
  19.  
  20. REM Run Windows.
  21. E:\WINDOWS\WIN.COM %1 %2 %3 %4 %5 %6 %7 %8
  22.  
  23. REM After Exiting Windows
  24. REM Re-enable DOS Screen Saver
  25. SCRNSAV ON
  26.  
  27. @ECHO ON
  28. @EXIT